home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / nihcl-30.lha / nihcl-3.0 / ex / ex5-3.c < prev    next >
C/C++ Source or Header  |  1990-05-15  |  307b  |  13 lines

  1. // ex5-3.c -- Writing a BigInt to the standard output
  2.  
  3. // $Header: /afs/alw.nih.gov/unix/sun4_40c/usr/local/src/nihcl-3.0/share/ex/RCS/ex5-3.c,v 3.0 90/05/15 22:45:19 kgorlen Rel $
  4.  
  5. #include <iostream.h>
  6. #include "BigInt.h"
  7.  
  8. main()
  9. {
  10.     BigInt b= "1234567890";
  11.     cout << "The BigInt is " << b << endl;
  12. }
  13.